home *** CD-ROM | disk | FTP | other *** search
/ CD Schooolhouse Version 10.0 / CD Schooolhouse Version 10.0.ISO / pc / dos / math / ode25 / volterra.ode < prev   
Encoding:
Text File  |  1994-03-03  |  176 b   |  13 lines

  1. # VOLTERRA.ODE
  2. # Volterra predator-prey equations
  3. # See any book on population dynamics
  4. # There is a limit cycle.
  5.  
  6. $t 20
  7.  
  8.  
  9. x  = 1
  10. y  = 2
  11. x' = (1-y)*x
  12. y' = (x-1)*y
  13.